/* first we need to access the descriptor */
desc = (struct xencomm_desc *)paddr_to_maddr((unsigned long)from);
if (desc->magic != XENCOMM_MAGIC) {
- printk("xencomm error: %p magic was 0x%x\n", desc, desc->magic);
+ printk("%s: error: %p magic was 0x%x\n",
+ __func__, desc, desc->magic);
return n;
}
/* first we need to access the descriptor */
desc = (struct xencomm_desc *)paddr_to_maddr((unsigned long)to);
if (desc->magic != XENCOMM_MAGIC) {
- printk("xencomm error: %p magic was 0x%x\n", desc, desc->magic);
+ printk("%s error: %p magic was 0x%x\n", __func__, desc, desc->magic);
return n;
}
/* first we need to access the descriptor */
desc = (struct xencomm_desc *)paddr_to_maddr((unsigned long)handle);
if (desc->magic != XENCOMM_MAGIC) {
- printk("xencomm error: %p magic was 0x%x\n", desc, desc->magic);
+ printk("%s error: %p magic was 0x%x\n", __func__, desc, desc->magic);
return;
}